home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
FileNotFoundError.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
291b
|
21 lines
// FileNotFoundError.h
#ifndef FileNotFoundError_h
#define FileNotFoundError_h
#ifndef FileError_h
#include "FileError.h"
#endif
class FileNotFoundError: public FileError
{
public:
FileNotFoundError( OSErr error )
: FileError( error )
{}
// Used for fnfErr
};
#endif